body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #74ABE2, #5563DE);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #74ABE2, #5563DE);
}

.header h1 {
  margin: 0;
  padding-left: 30px;
}

#contact-form {
  background-color: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

#contact-form h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #5563DE;
  box-shadow: 0 0 5px rgba(85, 99, 222, 0.4);
  outline: none;
}

button {
  width: 100%;
  background-color: #5563DE;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #3e4dbf;
}

#hamburger {
  color: rgb(63, 135, 242);
  display: class nav;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.nav {
  display: flex;
  background-color: rgb(63, 135, 242);
  padding: 10px;
  margin-top: 5px;
  display:list-item
}

.nav p:hover {
  cursor: pointer;
}

.nav p {
  margin: 0 10px;
}

.nav a {
  display: contents;
  text-decoration: none;
  color: black;
}

#navMenu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#navMenu li {
  background-color: rgb(63, 135, 242);
  padding: 10px;
  border-bottom: 1px solid white;
}

#navMenu a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  display: list-item;
}

#menu-btn {
    font-size: 24px;
    background: none;
    border: 100px;
    color: white;
    cursor: pointer;
}






